home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / etc / pcmcia / ieee1394 < prev    next >
Text File  |  2005-10-18  |  853b  |  57 lines

  1. #!/bin/sh
  2. #
  3. # ieee1394 1.00 2000/09/07 21:02:09 (Albrecht Dre▀)
  4. #
  5. # Initialize or shutdown a IEEE1394/FireWire device
  6. #
  7. # The first argument should be either 'start' or 'stop'.  The second
  8. # argument is the base name for the device.
  9. #
  10. # There is not very much to do for this script...
  11. #
  12.  
  13. if [ -r ./shared ] ; then . ./shared ; else . /etc/pcmcia/shared ; fi
  14.  
  15. # Get device attributes
  16. get_info $DEVICE
  17.  
  18. # Load site-specific settings
  19. ADDRESS="$SCHEME,$SOCKET,$INSTANCE"
  20. . $0.opts
  21.  
  22. case "$ACTION" in
  23.  
  24. 'start')
  25.     if is_true $LOAD_1394RAW ; then
  26.     modprobe raw1394
  27.     fi
  28.     ;;
  29.  
  30. 'check')
  31.     is_true $NO_CHECK && exit 0
  32.     ;;
  33.  
  34. 'cksum')
  35.     chk_simple "$NEW_SCHEME,$SOCKET,$INSTANCE" || exit 1
  36.     ;;
  37.     
  38. 'stop')
  39.     if is_true $LOAD_1394RAW ; then
  40.     modprobe -r raw1394
  41.     fi
  42.     ;;
  43.  
  44. 'suspend')
  45.     ;;
  46.  
  47. 'resume')
  48.     ;;
  49.  
  50. *)
  51.     usage
  52.     ;;
  53.  
  54. esac
  55.  
  56. exit 0
  57.